# OddEvenEncryption.py # # Description: Write a program that encrypts and decrypts messages # using a transposition algorithm called "odd&even". # # Anne Lavergne # Date: Jan. 29 2024 # Ask the user for a message to encrypt/decrypt # ***Encryption*** # Create two empty strings # Consider the index of each character in the user's plain message # If index of character is odd # Put this character in strOfOddChars # Otherwise put it in strOfEvenChars # When finish, create the cipher # Print the cipherMsg, i.e., the encrypted user message